home *** CD-ROM | disk | FTP | other *** search
/ Aminet 50 / Aminet 50 (2002)(GTI - Schatztruhe)[!][Aug 2002].iso / Aminet / util / wb / AmiStart.lha / ModulesSDK.lha / source / amistart_modulebase.h next >
C/C++ Source or Header  |  2002-03-22  |  757b  |  35 lines

  1. /*
  2. **      $VER: amistart_modulebase.h 39.0 (15.03.01)
  3. **
  4. **      definition of AmiStartModuleBase
  5. **
  6. **        by Darius Brewka based on CLib37x by
  7. **          (C) Copyright 1996-98 Andreas R. Kleinert
  8. **          All Rights Reserved.
  9. */
  10.  
  11. #ifndef AMISTART_MODULEBASE_H
  12. #define AMISTART_MODULEBASE_H
  13.  
  14. #ifdef   __MAXON__
  15. #ifndef  EXEC_LIBRARIES_H
  16. #include <exec/libraries.h>
  17. #endif
  18. #else
  19. #ifndef  EXEC_LIBRARIES
  20. #include <exec/libraries.h>
  21. #endif /* EXEC_LIBRARIES_H */
  22. #endif
  23.  
  24. struct AmiStartModuleBase
  25. {
  26.  struct Library         exb_LibNode;
  27.  SEGLISTPTR             exb_SegList;
  28.  struct ExecBase       *exb_SysBase;
  29.  struct IntuitionBase  *exb_IntuitionBase;
  30.  struct GfxBase        *exb_GfxBase;
  31.  struct DosBase           *exb_DosBase;
  32. };
  33.  
  34. #endif /* AMISTART_MODULEBASE_H */
  35.